New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

class.extend

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

class.extend

copy/paste implementation of John Resig's Simple JavaScript inheritance.

0.9.2
latest
Version published
Maintainers
1
Created

class.extend

copy/paste node package implementation of John Resig's simple javascript inheritance, http://ejohn.org/blog/simple-javascript-inheritance

Install

npm install class.extend

Usage

var Class = require('class.extend');

var Person = Class.extend('Person', {
  init: function(isDancing){
    this.dancing = isDancing;
  },
  dance: function(){
    return this.dancing;
  }
});
 
var Ninja = Person.extend('Ninja', {
  init: function(){
    this._super( false );
  },
  dance: function(){
    // Call the inherited version of dance()
    return this._super();
  },
  swingSword: function(){
    return true;
  }
});
 
var p = new Person(true);
 
var n = new Ninja();

FAQs

Package last updated on 29 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts